home *** CD-ROM | disk | FTP | other *** search
- /*
- HELLO.HPP - Hello World - A Simple Demoprogram
- (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
- */
- #if !defined (__HELLO_HPP)
-
- #define __HELLO_HPP 1
-
- #include <toplevel.hpp>
- #include "hello.h"
-
- class HELLO : public TOPLEVEL
- {
- private:
- PSTR pTitle;
- HFONT hFont;
-
- METHOD WMClose ();
- METHOD WMPaint ();
-
- public:
- HELLO (int nCmdShow);
-
- };
-
- #endif
-